Conversation
PR Review: Release v0.13.1This is a clean, minimal version bump PR. Here's my review: SummaryThe PR updates the version from
FeedbackCode Quality: ✅ Correctness: ✅ Potential concern — version duplication: # src/pltr/__init__.py
from importlib.metadata import version, PackageNotFoundError
try:
__version__ = version("pltr-cli")
except PackageNotFoundError:
__version__ = "unknown"This would mean future releases only need to bump Security: ✅ No concerns. Test coverage: N/A — version bump only, no logic changes. VerdictLGTM. The change is correct and consistent. The suggestion above is optional housekeeping for a future PR. |
Summary:\n- bump version from 0.13.0 to 0.13.1\n- update src/pltr/init.py version constant\n- refresh uv.lock\n- release tag v0.13.1 already pushed\n\nNotes:\n- main is protected, so this release commit is submitted via PR.